home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "modMain"
- Option Explicit
-
- Public Const CatalogCustomers = 1
- Public Const CatalogSuppliers = 2
- Public Const CatalogEmployees = 3
- Public Const CatalogProducts = 4
- Public Const CatalogOrders = 5
-
- Public Function TextToNull(strText As String) As Variant
-
- If strText = "" Then
- TextToNull = Null
- Else
- TextToNull = strText
- End If
-
- End Function
-